Welcome![Sign In][Sign Up]
Location:
Search - sliding window

Search list

[Internet-Networkcn3-simulator

Description: 四个网络协议在linux下的模拟实现,比如滑动窗口协议,可用来研究协议的性能-four network protocol in the linux Simulation, such as sliding window protocols, could be used to study the performance agreement
Platform: | Size: 22118 | Author: 刘智莹 | Hits:

[Graph program灰度共生矩阵纹理

Description: 用滑动窗口中图像的灰度共生矩阵进行简单的2类纹理的分割.-sliding window of the gray image symbiotic matrix simple two types of texture segmentation.
Platform: | Size: 1648 | Author: 夏玉 | Hits:

[WinSock-NDISydm

Description: 仿真程序: 1. OSI参考模型的信息流动过程:设计一个仿真程序,说明OSI参考模型的信息流 动过程以及每层的作用。 2. 调制和解调:设计一个演示程序,说明调制解调器的调制和解调的过程 3. 信号的编码:设计一个仿真程序,演示信号的直接编码、曼彻斯特编码、差分曼 彻斯特编码; 4. 滑动窗口协议:设计一个仿真程序,说明滑动窗口协议的工作过程 5. 设计一个全双工停等协议 -simulation program : 1. OSI reference model of information flow : design a simulation program, Note OSI Reference Model processes and information flows for each role. 2. Modulation and demodulation : design a demonstration program that the modem modulation and demodulation process 3. The signal coding : a simulation program designed to demonstrate the direct signal coding, Manchester encoding, the difference Manchester encoding; 4. Sliding Window Protocol : design a simulation program that the sliding window protocols process 5. The design of a full-duplex shutdown agreement
Platform: | Size: 10011 | Author: 小龙 | Hits:

[GDI-Bitmap对图像进行中值滤波处理的源代码

Description: 平滑滤波 一般来说,图像的能量主要集中在其低频部分,噪声所在的频段主要在高频段,同时系统中所要提取的汽车边缘信息也主要集中在其高频部分,因此,如何去掉高频干扰又同时保持边缘信息,是我们研究的内容。为了去除噪声,有必要对图像进行平滑,可以采用低通滤波的方法去除高频干扰。图像平滑包括空域法和频域法两大类,在空域法中,图像平滑的常用方法是采用均值滤波或中值滤波,对于均值滤波,它是用一个有奇数点的滑动窗口在图像上滑动,将窗口中心点对应的图像像素点的灰度值用窗口内的各个点的灰度值的平均值代替,如果滑动窗口规定了在取均值过程中窗口各个像素点所占的权重,也就是各个像素点的系数,这时候就称为加权均值滤波;对于中值滤波,对应的像素点的灰度值用窗口内的中间值代替。实现均值或中值滤波时,为了简便编程工作,可以定义一个n*n的模板数组。另外,读者需要注意一点,在用窗口扫描图像过程中,对于图像的四个边缘的像素点,可以不处理;也可以用灰度值为"0"的像素点扩展图像的边缘。下面给出了采用加权均值滤波的图像平滑函数代码和效果图:-smoothing filter general, the image of energy is mainly focused on the low-frequency part of the noise lies mainly in the high-frequency band, which system to extract the vehicle Edge Information has been concentrated in some of its high frequency, therefore, how to remove high-frequency interference at the same time, maintain the edge information, we Institute enforcement of the content. In order to remove noise, it is necessary for smooth images can be used to the low-pass filter to remove high-frequency interference. Image Smoothing including airspace and frequency domain method two categories, in the airspace law, the common image smoothing method is used Mean Median filter or filter for filtering mean, it is an odd point in the sliding window on the sliding images of the corresponding
Platform: | Size: 44032 | Author: | Hits:

[TCP/IP stack20050209006

Description: 该程序是模拟tcp六控制中滑动窗口的,tcp流控制机制就是由滑动窗口实现的。-The program is six control simulation tcp sliding window, tcp flow control mechanism is achieved by the sliding window.
Platform: | Size: 1924096 | Author: 无名 | Hits:

[Internet-Networkwindow

Description: 滑动窗口协议是计算机网络中为保证流控制和可靠而常用的一种协议,它一般在传输层TCP协议中实现。本代码实验滑动窗口协议中的1比特滑动窗口协议、回退N帧协议和选择性重传协议。-Sliding window protocol is a computer network in order to ensure the reliable flow control and a protocol commonly used, it is usually in the transport layer TCP protocol implementation. The sliding window protocol code in the experiment 1-bit sliding window protocol, the frame agreement back N and selective retransmission protocol.
Platform: | Size: 1024 | Author: 王业大 | Hits:

[STLsliding

Description: 求出sliding window的最大最小值-n array of size n ≤ 106 is given to you. There is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding window moves rightwards by one position. Following is an example: The array is [1 3-1-3 5 3 6 7], and k is 3. Window position Minimum value Maximum value [1 3 -1]-3 5 3 6 7 -1 3 1 [3 -1 -3] 5 3 6 7 -3 3 1 3 [-1 -3 5] 3 6 7 -3 5 1 3 -1 [-3 5 3] 6 7 -3 5 1 3 -1 -3 [5 3 6] 7 3 6 1 3 -1 -3 5 [3 6 7] 3 7 Your task is to determine the maximum and minimum values in the sliding window at each position.
Platform: | Size: 1024 | Author: ben | Hits:

[Dialog_Windowsliding-window

Description: This the implementation of sliding window protocol with server n client in it-This is the implementation of sliding window protocol with server n client in it
Platform: | Size: 8192 | Author: Dhivi | Hits:

[Program docsliding-window-protocol

Description: 北邮 计算机网络 数据链路层滑动窗口协议实验报告 -BUPT computer network data link layer of the sliding window protocol lab report
Platform: | Size: 109568 | Author: | Hits:

[Internet-Networksliding-window-protocol

Description: 模拟实现使用选择性重传策略的滑动窗口协议程序。程序实现了: 简单界面; 动态显示数据帧的发送和接收情况; 接收方应具有固定大小的滑动窗口; 发送发的发送速度可以调节。-Analog implementation use selective retransmission strategies sliding window protocol procedures. Program: simple interface dynamic display of the data frame transmission and reception receiving party should have a fixed size of the sliding window sending of the transmission speed can be adjusted.
Platform: | Size: 1168384 | Author: jie | Hits:

[OtherSliding-window-protocol-

Description: TCP可靠传输的实现,滑动窗口协议模拟程序-Sliding window protocol simulation programs
Platform: | Size: 1171456 | Author: kiting | Hits:

[Internet-Networksliding-window-master

Description: sliding-window-master UDP 可靠 单播 滑动窗口 具体实现-sliding-window-master UDP Unicast reliable sliding window implementation
Platform: | Size: 95232 | Author: XiongXiong | Hits:

[Industry researchSliding-Window---src

Description: sliding window protocol in network
Platform: | Size: 15360 | Author: surmax | Hits:

[JSP/JavaA-sliding-wnidow-using-java

Description: sliding window protocol implementation
Platform: | Size: 3072 | Author: Chitrang | Hits:

[matlabPAPR-Reduction-of-FBMC-Using-Sliding-Window

Description: sliding window and active constellation extension for fbmc oqam signal
Platform: | Size: 239616 | Author: sandeepkumar | Hits:

[DSP programSliding-DFT---CodeWarrior-implementation

Description: The sliding DFT is a spectral analysis method based on the classical FFT, implemented over a subset of the N center frequencies of the N-point DFT. The sliding DFT (SDFT) algorithm performs an N-point DFT on time samples within a sliding-window.
Platform: | Size: 1024 | Author: Elena Dobre | Hits:

[Software EngineeringTCP-Sliding-Window-Collection

Description: 工作中曾遇到了高速传输TCP滑动窗口问题,将网上有关的说法做了一下集中,作为大家借鉴。-I had encountered the high-speed transmission TCP sliding window problem in my job, so I collected related resources the Internet for everyone s sake.
Platform: | Size: 47104 | Author: vin | Hits:

[TCP/IP stackNetriver-sliding-window-protocol

Description: Netriver滑动窗口协议实验,主要实现1比特滑动窗口协议,回退N帧滑动窗口协议以及选择性重传协议,包含源码和实验报告-Netriver sliding window protocal. The .zip file contains source code and laboratory report for your reference.
Platform: | Size: 568320 | Author: 秦汉民 | Hits:

[Software EngineeringMinimum-Sliding-Window

Description: Program to solve minimum sliding window problem using an array.
Platform: | Size: 275456 | Author: ALOK KUMAR | Hits:

[TCP/IP stackSliding-Window-Protocol

Description: 滑动窗口协议C语言实现版,对理解协议内容具有重要意义-Sliding window protocol C language version, the understanding of the content of the agreement is of great significance
Platform: | Size: 176128 | Author: NewBee | Hits:
« 1 23 4 5 6 7 8 9 10 ... 15 »

CodeBus www.codebus.net